type net/http.http2SettingsFrame
17 uses
net/http (current package)
h2_bundle.go#L2112: type http2SettingsFrame struct {
h2_bundle.go#L2144: f := &http2SettingsFrame{http2FrameHeader: fh, p: p}
h2_bundle.go#L2155: func (f *http2SettingsFrame) IsAck() bool {
h2_bundle.go#L2159: func (f *http2SettingsFrame) Value(id http2SettingID) (v uint32, ok bool) {
h2_bundle.go#L2171: func (f *http2SettingsFrame) Setting(i int) http2Setting {
h2_bundle.go#L2179: func (f *http2SettingsFrame) NumSettings() int { return len(f.p) / 6 }
h2_bundle.go#L2182: func (f *http2SettingsFrame) HasDuplicates() bool {
h2_bundle.go#L2214: func (f *http2SettingsFrame) ForeachSetting(fn func(http2Setting) error) error {
h2_bundle.go#L3022: case *http2SettingsFrame:
h2_bundle.go#L4323: fr := &http2SettingsFrame{
h2_bundle.go#L5327: if _, ok := f.(*http2SettingsFrame); !ok {
h2_bundle.go#L5349: case *http2SettingsFrame:
h2_bundle.go#L5491: func (sc *http2serverConn) processSettings(f *http2SettingsFrame) error {
h2_bundle.go#L9362: if _, ok := f.(*http2SettingsFrame); !ok {
h2_bundle.go#L9378: case *http2SettingsFrame:
h2_bundle.go#L9878: func (rl *http2clientConnReadLoop) processSettings(f *http2SettingsFrame) error {
h2_bundle.go#L9895: func (rl *http2clientConnReadLoop) processSettingsNoWrite(f *http2SettingsFrame) error {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |